00001 #ifndef POL_H_ 00002 #define POL_H_ 00003 00010 class Pol 00011 { 00012 private: 00013 float distance; 00014 float angle1; 00015 float angle2; 00016 public: 00017 Pol(); 00018 int decompose(char *receivingMessage); 00019 float getDistance(); 00020 float getAngle1(); 00021 float getAngle2(); 00022 }; 00023 00024 #endif /* POL_H_ */